home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsdll.h < prev    next >
C/C++ Source or Header  |  1997-05-09  |  5KB  |  129 lines

  1. /* Copyright (C) 1994-1996, Russell Lang.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19.  
  20. /* gsdll.h */
  21.  
  22. #ifndef _GSDLL_H
  23. #define _GSDLL_H
  24.  
  25. #ifndef GSDLLEXPORT
  26. #define GSDLLEXPORT
  27. #endif 
  28.  
  29. #ifdef __WINDOWS__
  30. #define _Windows
  31. #endif
  32.  
  33. /* type of exported functions */
  34. #ifdef _Windows
  35. #ifdef _WATCOM_
  36. #define GSDLLAPI GSDLLEXPORT
  37. #else
  38. #define GSDLLAPI CALLBACK GSDLLEXPORT
  39. #endif
  40. #else
  41. #ifdef __IBMC__
  42. #define GSDLLAPI _System
  43. #else
  44. #define GSDLLAPI
  45. #endif
  46. #endif
  47.  
  48. #ifdef _Windows
  49. #define GSDLLCALLLINK
  50. #define GSFAR FAR
  51. #else
  52. #ifdef __IBMC__
  53. #define GSDLLCALLLINK _System
  54. #else
  55. #define GSDLLCALLLINK
  56. #endif
  57. #define GSFAR
  58. #endif
  59.  
  60. /* global pointer to callback */
  61. typedef int (GSFAR *GSDLLCALLLINK GSDLL_CALLBACK)(int, char GSFAR *, unsigned long);
  62. extern GSDLL_CALLBACK pgsdll_callback;
  63.  
  64. /* message values for callback */
  65. #define GSDLL_STDIN 1   /* get count characters to str from stdin */
  66.             /* return number of characters read */
  67. #define GSDLL_STDOUT 2  /* put count characters from str to stdout*/
  68.             /* return number of characters written */
  69. #define GSDLL_DEVICE 3  /* device = str has been opened if count=1 */
  70.             /*                    or closed if count=0 */
  71. #define GSDLL_SYNC 4    /* sync_output for device str */ 
  72. #define GSDLL_PAGE 5    /* output_page for device str */
  73. #define GSDLL_SIZE 6    /* resize for device str */
  74.             /* LOWORD(count) is new xsize */
  75.             /* HIWORD(count) is new ysize */
  76. #define GSDLL_POLL 7    /* Called from gp_check_interrupt */
  77.             /* Can be used by caller to poll the message queue */
  78.             /* Normally returns 0 */
  79.             /* To abort gsdll_execute_cont(), return a */
  80.             /* non zero error code until gsdll_execute_cont() */
  81.             /* returns */
  82.  
  83. /* return values from gsdll_init() */
  84. #define GSDLL_INIT_IN_USE  100    /* DLL is in use */
  85. #define GSDLL_INIT_QUIT    101    /* quit or EOF during init */
  86.                                   /* This is not an error. */
  87.                                   /* gsdll_exit() must not be called */
  88.  
  89.  
  90. /* DLL exported  functions */
  91. /* for load time dynamic linking */
  92. int GSDLLAPI gsdll_revision(char GSFAR * GSFAR *product, char GSFAR * GSFAR *copyright, long GSFAR *gs_revision, long GSFAR *gs_revisiondate);
  93. int GSDLLAPI gsdll_init(GSDLL_CALLBACK callback, HWND hwnd, int argc, char GSFAR * GSFAR *argv);
  94. int GSDLLAPI gsdll_execute_begin(void);
  95. int GSDLLAPI gsdll_execute_cont(const char GSFAR *str, int len);
  96. int GSDLLAPI gsdll_execute_end(void);
  97. int GSDLLAPI gsdll_exit(void);
  98. int GSDLLAPI gsdll_lock_device(unsigned char *device, int flag);
  99. #ifdef _Windows
  100. HGLOBAL GSDLLAPI gsdll_copy_dib(unsigned char GSFAR *device);
  101. HPALETTE GSDLLAPI gsdll_copy_palette(unsigned char GSFAR *device);
  102. void GSDLLAPI gsdll_draw(unsigned char GSFAR *device, HDC hdc, LPRECT dest, LPRECT src);
  103. int GSDLLAPI gsdll_get_bitmap_row(unsigned char *device, LPBITMAPINFOHEADER pbmih,
  104.     LPRGBQUAD prgbquad, LPBYTE *ppbyte, unsigned int row);
  105. #else
  106. unsigned long gsdll_get_bitmap(unsigned char *device, unsigned char **pbitmap);
  107. #endif
  108.  
  109. /* Function pointer typedefs */
  110. /* for run time dynamic linking */
  111. typedef int (GSDLLAPI *PFN_gsdll_revision)(char GSFAR * GSFAR *, char GSFAR * GSFAR *, long GSFAR *, long GSFAR *);
  112. typedef int (GSDLLAPI *PFN_gsdll_init)(GSDLL_CALLBACK, HWND, int argc, char GSFAR * GSFAR *argv);
  113. typedef int (GSDLLAPI *PFN_gsdll_execute_begin)(void);
  114. typedef int (GSDLLAPI *PFN_gsdll_execute_cont)(const char GSFAR *str, int len);
  115. typedef int (GSDLLAPI *PFN_gsdll_execute_end)(void);
  116. typedef int (GSDLLAPI *PFN_gsdll_exit)(void);
  117. typedef int (GSDLLAPI *PFN_gsdll_lock_device)(unsigned char GSFAR *, int);
  118. #ifdef _Windows
  119. typedef HGLOBAL (GSDLLAPI *PFN_gsdll_copy_dib)(unsigned char GSFAR *);
  120. typedef HPALETTE (GSDLLAPI *PFN_gsdll_copy_palette)(unsigned char GSFAR *);
  121. typedef void (GSDLLAPI *PFN_gsdll_draw)(unsigned char GSFAR *, HDC, LPRECT, LPRECT);
  122. typedef int (GSDLLAPI *PFN_gsdll_get_bitmap_row)(unsigned char *device, LPBITMAPINFOHEADER pbmih,
  123.     LPRGBQUAD prgbquad, LPBYTE *ppbyte, unsigned int row);
  124. #else
  125. typedef long (*GSDLLAPI PFN_gsdll_get_bitmap)(unsigned char *, unsigned char **);
  126. #endif
  127.  
  128. #endif
  129.